home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue26 / system / sniff.DPR < prev    next >
Encoding:
Text File  |  1997-09-08  |  189 b   |  14 lines

  1. program Sniff;
  2.  
  3. uses
  4.   Forms,
  5.   Usniff in 'USNIFF.PAS' {Form1},
  6.   Dllpeek in 'DLLPEEK.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.